home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EuroCD 3
/
EuroCD 3.iso
/
Programming
/
Python-1.4
/
Lib
/
test
/
testall.py
< prev
Wrap
Text File
|
1998-06-24
|
935b
|
49 lines
# testall.py -- a regression test for the Python interpreter.
# To run the tests, execute "import testall" in a clean interpreter.
# It is a good idea to do this whenever you build a new interpreter.
# Remember to add new tests when new features are added!
from test_support import *
print 'test_grammar'
forget('test_grammar')
import test_grammar
print 'test_opcodes'
unload('test_opcodes')
import test_opcodes
print 'test_operations'
unload('test_operations')
import test_operations
print 'test_builtin'
unload('test_builtin')
import test_builtin
print 'test_exceptions'
unload('test_exceptions')
import test_exceptions
print 'test_types'
unload('test_types')
import test_types
print 'test_math'
unload('test_math')
import test_math
print 'test_md5'
unload('test_md5')
import test_md5
print 'test_pow'
unload('test_pow')
import test_pow
print 'test_strop'
unload('test_strop')
import test_strop
print 'Passed all tests.'